.product {
    width: 100%;
    height: 400px;
    margin-bottom: 200px;
}

.product-left {
    margin: 0px auto;
    max-width: 1400px;
    height: 100%;
    position: relative;

}

.product-right {
    margin: 0px auto;
    max-width: 1400px;
    height: 100%;
    position: relative;
}

.img-left {
    position: absolute;
    left: -20px;
    max-width: 900px;
    height: 100%;
    z-index: 1;

}

.img-right {
    position: absolute;
    right: -20px;
    max-width: 900px;
    height: 100%;
    z-index: 1;

}

.img-left img {
    border-radius: 5px;
    box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.1);
    width: 100%;
    object-fit: cover;
}

.img-right img {
    border-radius: 5px;
    box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.1);
    width: 100%;
    object-fit: cover;
}

.info-left {
    max-width: 650px;
    right: 20px;
    top: 80px;
    position: absolute;
    background: white;
    padding: 40px 70px;
    z-index: 2;
}

.info-right {
    max-width: 650px;
    left: 20px;
    top: 80px;
    position: absolute;
    background: white;
    padding: 40px 70px;
    z-index: 2;
}

.product-title{
    margin-bottom: 15px;
}

.button-container{
    margin-top: 20px;
    display:flex;
    flex-direction:row-reverse;
}

.product-button {
    color: white!important;
    background: rgb(0, 87, 162);
    padding: 15px 20px;
    border-radius: 25px;
}

/*.product-button:hover {
    background: rgb(156, 6, 6);
}*/

@media (max-width: 768px) {
    .product{
        margin-bottom: 20px;
        height:auto;
    }
    .img-left {
        position: relative;
        left: 0px;
        max-width: 900px;
        height: 100%;
        z-index: 1;

    }

    .info-left {
        margin: 0 auto;
        right: 0px;
        top: 0px;
        position: relative;
        background: white;
        padding: 40px 70px;
        z-index: 2;
    }

    .img-right {
        position: relative;
        left: 0px;
        max-width: 900px;
        height: 100%;
        z-index: 1;

    }

    .info-right {
        margin: 0 auto;
        left: 0px;
        top: 0px;
        position: relative;
        background: white;
        padding: 40px 70px;
        z-index: 2;
    }
}